本文以計算器程式為主體,為c++初學者帶來goto loop的巧妙的實際運用。
(文中計算器的功能僅涉及加法、減法、乘法、除法)
#include "pch.h"
#include using namespace std;
void main()
cout << '\n' << "輸入l離開該執行視窗;輸入c繼續進行運算" << endl;
char vv;
cin >> vv;
if (vv == 'l')
cout << "感謝使用該簡易計算器!" << endl;
else if (vv == 'c')
goto loop;
else
cout << "請輸入提示字元(l或s)!" << endl;
}}
上述**在vs17環境下編譯執行通過。
我的github鏈結
C指標極簡入門
指標的實質是乙個變數 乙個儲存記憶體位址的變數 在x86系統中佔4個位元組,在x64系統中佔8個位元組 指標的作用是指向記憶體的另乙個地方,並且明確了指向的記憶體位址大小 即寬度 x86 x64系統的系統位址匯流排為32 64位,且cpu 暫存器單次所能處理的資料為32 64位 概括的講指標的主要內...
C 程式入門
using system class welcome 上述 中的using system表示匯入system的命名空間。然後下面的console.writeline 就可以直接使用了,如果沒有匯入system的話,就需要system.console.writeline 這樣使用了。c 要求程式中的每...
C程式入門小程式
c程式語言例題 includeint main printf the number of line is 3d nthe number of space is 3d nthe number of tab is 3d n line,space,tab return 0 includeint main ...