我的程式:
01./*
02.* 程式的版權和版本宣告部分:
05.* 檔名稱:test.cpp
06.* 作 者:王魯峰
07.* 完成日期:2013 年12月23日
08.* 版 本 號:v1.0
09.* 對任務及求解方法的描述部分:
10.* 輸入描述:無
11.* 問題描述:該定義函式能實現實際引數在必要時的交換
12.* 程式輸入:略
13.* 程式輸出:略
14.* 演算法設計:略
15.*/
#include using namespace std;
void jiaohuan(int &x, int &y);
int main()
{ int a,b;
cin>>a>>b;
if (a
執行結果:
第13周基礎練習 dbeywubf
題目內容 編寫程式,按下列格式顯示資訊 1 10 100 1000 10000 100000 1000000 共7行,每行的數值是固定的,每行兩端是 號,中間的 是填充字元,實際數字的位數小於域時自動填充。輸入 域寬 填充字元和對齊方式,其中對齊方式 1表示居左,0表示具有。輸出 題目說明的7行資訊...
17周周一周二
一.io outputstream system.in system.out 檔案自身file fileinputsream fileinputsream fin new fileinputstream f a.txt read 每次讀乙個位元組 返回值 1檔案末尾 while ch fin.rea...
SICP練習 17 練習1 23
練習1.23 首先我們按照題目要求來寫出相應的next函式,然後再修改find divisor函式。define next x if x 2 3 n 2 define find divisor ntest divisor cond square test divisor n n divides?te...