1樓:匿名使用者
1,-2
while y=2!=-1,執行--,此時y=1進入do
完成do,x=2;
與do連的while y==1,後y=0,進入do,
x=1;
與do連的while y==0,跳出do,y=-1;
進入第一個while y=-1==-1,跳出while,執行--,y=-2
進入printf,
1,-2
2樓:小太陽
程式有誤,改正後輸出結果為:
3object in existence
4objects in existence after allocation
3objects in existence after deletion
改正後的程式如下:
#include
class aclass
~aclass()
int gettotal()
private:
static int total;
};int aclass::total=0;
int main()
cout< cout<< "objects in existence after allocation\n"; delete p; cout< cout<<"objects in existence after deletion\n"; return 0;} 寫出下面程式執行的結果 3樓:匿名使用者 while(a=14):就是給a賦值14 然後while裡面一直是true 所以一直迴圈 直到裡面break跳出 此時a=14+2=16 y=12+16+16+16=60 答 1.for s 0,i 2 i 10 i 2 迴圈4次,i 分別為 2 4 6 8,那麼 s i 就是 2 4 6 8 20,最後列印結果 20。2.外層 for a 1 a 5 a 2 迴圈2次,a 分別為 1 3,內層 for b 1 b 5 b 迴圈4次,b 分別為 1 2 3 4,所以 ... 首先 說一下 這裡用到遞迴 函式的具體執行過程1,先 fun 1,2 執行子函式,由於1 2 不成立,執行else 語句 fun m 1,n 也就是 fun 2,2 先遞迴呼叫子函式,下面的輸出語句還不執行,2,fun 2,2 執行時,if m n 條件成立,執行if 輸出語句 printf d m... 1 結果 3 2 5 9 4 13 2 結果bc def3 結果 6 5 11 36 25 11 這個是vfp上的題,求程式執行結果的運算題,拜託給看一下哦 o 大槐樹下 7 14之間被3整除的數 數字中有3的數的和 clear s 0for i 7 to 14 if mod i,3 0 or 3 ...寫出下面程式的輸出結果,1 寫出以下程式的輸出結果
分析下列程式,寫出執行結果
VFP的基礎題,寫出程式執行結果