out

    -1熱度

    1回答

    我很新的C++編程,我想顯示 如何以這種格式顯示產生output.txt文件。 A B C d E F G H I J K L M N 2 O P Qř式T U V W X arrow- T W&ģX Z R L L N H A我A F L E W^g^Q H V RÑV dù 在文本文件 ,但我不知道爲什麼它們顯示爲垃圾。 #include <iostream> #include <cstdl

    3熱度

    1回答

    我試圖支持ZAR(南非蘭特)的結帳。 到目前爲止,我已啓用$,這使貝寶模塊,但轉換沒有完成。 該網站只是結帳的價值。例如:R1500.00 = 1500.00美元通過貝寶退房。 使用內置轉換器進行貨幣轉換的正確方法是什麼?

    0熱度

    1回答

    所以我想賴特程序來打印一個單詞,所有的元音換成$。在java中是 。 我一直得到這個錯誤exception in thread main java.lang.StringIndexOutOfBoundsException: String index out of range: 6當我運行它,它編譯罰款。 這是代碼。 import java.util.*; public class Summer

    0熱度

    1回答

    我需要驗證一個具有out遊標參數的過程。具體而言,我需要查看什麼是檢索。 我試試這個: declare type cursor_out is ref cursor; cur cursor_out; fila activ_economica%rowtype; procedure test(algo out cursor_out) is begin

    0熱度

    1回答

    返回從功能和填充的變量(2)多值我有A類的函數: public int RecordSummary() { int result = 0; int recordsAffected = 0; SqlCommand cmd = new SqlCommand("spIATRecordSummary", conn); cmd.Comma

    0熱度

    2回答

    我的Perl腳本,需要詢問用戶密碼,下載一些文件: print "Your password please: \n"; ReadMode('noecho'); $password = ReadLine(0); $password =~ s/\n//; ReadMode(0); system("wget --user=user --password=\"$password\" http:

    0熱度

    1回答

    我設計了我的網頁以完美地適應iPhone屏幕。它的頂部有一個小文本框。 當用戶點擊文本框輸入文本時,Iphone瀏覽器會自動縮放到屏幕的頂部,這非常酷。但是,在用戶點擊搜索後,瀏覽器仍然放大到頂部角落。用戶必須手動縮小以查看全屏。 因此,我想通過調用一個可以自動縮小並顯示完整網頁的JavaScript來解決此問題。 感謝

    1熱度

    1回答

    如果我使用OUT或INOUT參數在MySQL中創建存儲過程,則不起作用。即使我將存儲過程留空。該DDL如下: CREATE DEFINER=`root`@`localhost` PROCEDURE `testing_inout`(`a` int,INOUT `b` int) BEGIN END 第一個參數是一個常規參數。第二個是一個INOUT paremeter(即使設置爲OUT了同樣的

    0熱度

    6回答

    我有一個像這樣 private bool VerbMethod(string httpVerb, string methodName, string url, string command, string guid, out HttpWebResponse response) 的方法我用這個像這樣 HttpWebResponse response; if (VerbMethod("P

    3熱度

    5回答

    可能重複: C# - Reference type still needs pass by ref? class OutReturnExample { static void Method(out int i, out string s1, out string s2) { i = 44; s1 = "I've been returned";