iT邦幫忙

2022 iThome 鐵人賽

DAY 1
0

系統:ubuntu-22.04
需要安裝套件如下(Command):

  • sudo apt install build-essential
    C:
    #include <stdio.h>

int main()

{

printf("Hello, World!");

return 0;

}

how to complier
gcc -o helloworld helloworld.c[檔案名稱]
附上附圖
https://ithelp.ithome.com.tw/upload/images/20220901/20151652jV296BA8dQ.jpg

99乘法表:
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char argv[])
{
int i, j;
for(i=1; i<10; i++)
{
for(j=1; j<10; j++)
{
printf(" %d
%d=%2d ", i, j, i*j);
}
printf("\n");
}

system("PAUSE");
return 0;
}
附圖
https://ithelp.ithome.com.tw/upload/images/20220901/20151652ht2spewqkF.jpg

參考來源:https://linuxhint.com/install-gcc-ubuntu22-04/


下一篇
Day2-C++_Hello_world
系列文
30種程式語言的[hello_world]及如何建立環境30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言