c語言中將小寫字母a和b轉換為大寫a和b?
#include <stdio.h>#include <string.h>int main(){ char x = 'a'; char y = toupper(x); printf("%c -> %c\n", x, y); return 0;}
上一篇怎么才能做好AI
下一篇做好的代碼怎么保存桌面
c語言中將小寫字母a和b轉換為大寫a和b?
#include <stdio.h>#include <string.h>int main(){ char x = 'a'; char y = toupper(x); printf("%c -> %c\n", x, y); return 0;}